adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / Range<T> Class / Range<T> Constructor / Range<T> Constructor(Nullable<T>,Nullable<T>)
The starting (minimum) value for the range.
The ending (maximum) value for the range.


In This Topic
    Range<T> Constructor(Nullable<T>,Nullable<T>)
    In This Topic
    Creates a new Range for the specified start and end values
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal start As Nullable(Of T), _
       ByVal end As Nullable(Of T) _
    )
    public Range<T>( 
       Nullable<T> start,
       Nullable<T> end
    )
    public:
    Range<T>( 
       Nullable<T^> start,
       Nullable<T^> end
    )

    Parameters

    start
    The starting (minimum) value for the range.
    end
    The ending (maximum) value for the range.
    Remarks
    If Min > Max, the values are swapped.
    See Also